net/http.http2requestParam.header (field)
14 uses
net/http (current package)
h2_bundle.go#L6322: rp.header = make(Header)
h2_bundle.go#L6324: rp.header.Add(sc.canonicalHeader(hf.Name), hf.Value)
h2_bundle.go#L6327: rp.authority = rp.header.Get("Host")
h2_bundle.go#L6330: rp.header.Set(":protocol", rp.protocol)
h2_bundle.go#L6339: if vv, ok := rp.header["Content-Length"]; ok {
h2_bundle.go#L6359: header Header
h2_bundle.go#L6370: needsContinue := httpguts.HeaderValuesContainsToken(rp.header["Expect"], "100-continue")
h2_bundle.go#L6372: rp.header.Del("Expect")
h2_bundle.go#L6375: if cookies := rp.header["Cookie"]; len(cookies) > 1 {
h2_bundle.go#L6376: rp.header.Set("Cookie", strings.Join(cookies, "; "))
h2_bundle.go#L6381: for _, v := range rp.header["Trailer"] {
h2_bundle.go#L6396: delete(rp.header, "Trailer")
h2_bundle.go#L6421: Header: rp.header,
h2_bundle.go#L7332: header: http2cloneHeader(msg.header), // clone since handler runs concurrently with writing the PUSH_PROMISE